home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gemforce / gfimport.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  467 b   |  27 lines

  1. /* IMPORT.H zu GEM-Force */
  2.  
  3. #ifndef __IMPORT__
  4. #define __IMPORT__
  5.  
  6. /* # include <PORTAB.H> */
  7.  
  8. #ifdef GLOBAL
  9. #undef GLOBAL
  10. #endif
  11.  
  12. # define GLOBAL extern
  13. # define LOCAL  static
  14.  
  15. #ifndef max
  16. # define max(a,b)    (((a) > (b)) ? (a) : (b)) /* Maximum-Funktion */
  17. # define min(a,b)    (((a) < (b)) ? (a) : (b)) /* Minimum Funktion */
  18. #endif
  19.  
  20. #ifndef BOOLEAN
  21. # define BOOLEAN int
  22. # define TRUE 1
  23. # define FALSE 0
  24. #endif
  25.  
  26. #endif /* __IMPORT__ */
  27.